home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / usplash / README < prev   
Text File  |  2009-10-22  |  1KB  |  48 lines

  1. Usplash is a userspace bootsplash application built on top of the BOGL
  2. framebuffer library.
  3.  
  4. BUILDING
  5.  
  6. make
  7.  
  8. INSTALLING
  9.  
  10. make install
  11. mkdir /var/lib/usplash
  12. mkfifo /var/lib/usplash/usplash_fifo
  13.  
  14. USING
  15.  
  16. usplash will launch the bootsplash program.
  17.  
  18. usplash_write will write commands to the usplash fifo. It uses
  19. non-blocking IO, so will exit with an exit code of 0 if usplash is not
  20. running. The format of a usplash command is COMMAND argument - this
  21. must be passed as a single argument to usplash_write.
  22.  
  23. Current commands are:
  24.  
  25. TEXT - prints a line of text
  26. STATUS - prints text in the right hand side of the usplash screen
  27. SUCCESS - prints green text in the right hand side of the usplash screen
  28. FAILURE - prints red text in the right hand side of the usplash screen
  29. PROGRESS - prints a progress bar of argument percent
  30. CLEAR - clears the text area
  31. TIMEOUT - sets the timeout to something other than 15 seconds
  32. QUIT - quits the usplash daemon
  33.  
  34. EXAMPLES
  35.  
  36. usplash_write "TEXT hello usplash!" - will write "hello usplash!" to
  37. the text area 
  38.  
  39. usplash_write "TEXT test" - will scroll "hello usplash!" upwards and
  40. print "test" in its original location
  41.  
  42. usplash_write "STATUS yes" - will print "yes" to the right of "test"
  43.  
  44. usplash_write "PROGRESS 20" - will print a progress bar that covers
  45. 20% of the progress bar area
  46.  
  47. usplash_write "QUIT" - will quit the daemon
  48.